home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / v cisle / pcwmultiboot / pcwMultiboot.exe / BootCD / MyBootCD / qemu-0.8.2 / README-en.txt < prev    next >
Text File  |  2006-01-24  |  3KB  |  118 lines

  1. QEMU on Windows
  2.  
  3.     QEMU is an emulator for various CPUs. It works on Linux, Windows, FreeBSD and Mac OS X.
  4.  Windows version is in an alpha stage.
  5.  
  6.     Double hyphen "--" is no more needed. Please use a single hyphen for all options.
  7.  
  8. 1. Install
  9.  
  10.     Please extract ziped file. When extracted, you are ready.
  11.  
  12. 2. Starting a program
  13.  
  14.     There are two ways to start a program.
  15.  
  16. 2.1 Using a batch file
  17.  
  18.     A file "qemu-win.bat" starts QEMU. Double click boots Linux on your desktop. 
  19.  
  20. When you use Command Prompt(MS-DOS Prompt), type
  21.  
  22.     qemu.exe -L . -hda linux.img
  23.  
  24.     An option "-hda" set hard disk image and an option "-L" set bios location. 
  25.  
  26.     When a mouse cursor is missing, type Ctrl and Alt key together. Please use Alt
  27. and Tab on WindowsMe.
  28.  
  29.     To exit from Linux, press Ctrl-Alt-2 keys together then you will see (qemu) prompt.
  30. Then type quit.
  31.  
  32.         (qemu) quit
  33.  
  34. 2.2 Using a shortcut
  35.  
  36.     Create a new shortcut of qemu.exe. Right click on the shortcut, append appropriate
  37. options like "C:\...\qemu.exe" -L . -hda linux.img at link to text field. 
  38. Double click the shortcut.
  39.  
  40. 3. Test
  41.  
  42.     There is a benchmark in linux.img. When Linux boots, type
  43.  
  44.     sh-2.05b# cd nbench
  45.     sh-2.05b# ./nbench
  46.  
  47.     INTEGER INDEX and FLOATING-POINT INDEX are index to Pentium 90MHz.
  48.  
  49. 4. x86_64 emulation
  50.  
  51.     A file "qemu-x86_64.bat" also boots linux on your desktop. It boots 32 bit and 
  52. 64 bit OS.
  53.  
  54. 5. Hard disk image
  55.  
  56.    A hard disk image file can be created by qemu-img.exe.
  57.    To create a 10MB hard disk image file, type in command prompt:
  58.  
  59.    qemu-img.exe create harddisk.img 10M
  60.  
  61. 6. Floppy and CD-ROM
  62.  
  63.     You can change a floppy and a CD-ROM image from QEMU Monitor.
  64.     QEMU Monitor can be seen by pressing Ctrl, Alt, 2 key together.
  65. Pressing Ctrl, Alt, 1 key together returns to your guest OS.
  66.  
  67.     It needs to convert floppy and CD-ROM to image file to use it.
  68.  
  69.     For floppy, there are many converters. Please choose your favorite one.
  70.  
  71.     If you have CD-R writing software, you can use it. If you don't have it, 
  72. you can use mkisofs command in cdrtools. 
  73.  
  74.     To use them together, type:
  75.  
  76.     qemu.exe -L . -m 128 -boot a -fda floppy.img -hda harddisk.img -cdrom cdimage.iso
  77.  
  78.   -L : bios location
  79.   -m : memory size (Mbyte)
  80.   -boot : boot device  floppy(a), hard disk(c), CD-ROM(d)
  81.   -fda : floppy image
  82.   -hda : hard disk image
  83.   -cdrom : CD-ROM image
  84.  
  85. When you want to change a floppy and CD-ROM image, type:
  86. (qemu) change fda filename.img
  87. or
  88. (qemu) change cdrom fdimage.iso
  89.  
  90. 7. Uninstall
  91.  
  92.     Please delete the extracted folder. If you use an installer, the program uses a registry.
  93.  
  94. 8. Notes
  95.  
  96.     Don't start two QEMU on one hard disk image. It will break the hard disk image.
  97.  
  98. 9. License
  99.  
  100.     Please refer to files in License folder.
  101.     This program is provided "as is" and without any warranty. Please use it 
  102. at your own risk.
  103.  
  104. 10. Links
  105.  
  106.   QEMU
  107.     http://fabrice.bellard.free.fr/qemu/
  108.   Bochs BIOS
  109.     http://bochs.sourceforge.net/ 
  110.   VGA BIOS
  111.     http://www.nongnu.org/vgabios/
  112.   MinGW
  113.     http://www.mingw.org/ 
  114.   SDL Library
  115.     http://www.libsdl.org/
  116.  
  117. Have fun,
  118.     kazu